hostlist-parser 0.1.6

Parses hostlist expressions into a Vec of Strings
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
---
source: src/lib.rs
assertion_line: 422
expression: "parse(\"test[000-002].localdomain\")"

---
Ok(
    [
        "test000.localdomain",
        "test001.localdomain",
        "test002.localdomain",
    ],
)